www.gusucode.com > 酷维企业网站CMS管理系统 v2.1.0 > 酷维企业网站CMS管理系统 v2.1.0\code\Admin\HotelDetail.asp

    <%@ LANGUAGE = VBScript %>
<%if session("admin")="" then
response.Write "<script language='javascript'>alert('网络超时或您还没有登陆!');window.location.href='Admin_Login.asp';</script>"
response.End
end if
%>
<!--#include file="system/connection.asp"-->
<%
id=request("id")
set rs=server.createobject("adodb.recordset")
sqltext="select * from Hotelb where id="&id
rs.open sqltext,conn,1,1
%>
<html>
<head>
<title>酒店信息详情</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="system/style.css" type="text/css">
</head>
<body> 
<br>
  <br>
  <br>
            <table width="50%" border=1 align="center" cellPadding=0 cellSpacing=0 bordercolor="#999999" borderColorDark=#ffffff bgcolor="#F9F9F9">
              <TBODY>
              <tr align="center">
                <TD height=30 colspan="2" background="Images/topBar_bg.gif"><font color="#FF0000"><b>酒店信息详情</b></font></TD>
              </tr>
              <tr>
                <TD height=143 colspan="2"><table border="0" align="center" cellPadding=0 cellspacing="1" borderColorDark=#ffffff>
                  <tr>
                    <td width="150" height="120"><div align="center"><img border="0" src="../admin/<%=rs("logurl")%>" width="150" height="120"></div></td>
                    <td width="150"><img border="0" src="../admin/<%=rs("logurl2")%>" width="150" height="120"></td>
                    <td width="150"><img border="0" src="../admin/<%=rs("logurl3")%>" width="150" height="120"></td>
                  </tr>
                  <tr>
                    <td height="20" bgcolor="#ebebeb">
                      <div align="center">外观</div></td>
                    <td bgcolor="#ebebeb"><div align="center">大堂</div></td>
                    <td bgcolor="#ebebeb"><div align="center">客房</div></td>
                  </tr>
                </table></TD>
              </tr>
              <tr>
                <TD width=161 height=25 align="right">酒店名称:</TD>
                <TD width=328 height=25> <%=rs("c_name")%></TD>                       
              </tr>
              <tr>
                <TD width=161 height=25 align="right">星级标准:</TD>
                <TD width=328 height=25 > <%=rs("level")%></TD>          
              </tr>
              <tr>
                <TD width=161 height=25 align="right">酒店所在省份:</TD>
                <TD width=328 height=25 > <%=rs("province")%></TD>                              
              </tr>
              <tr>
                <TD width=161 height=25 align="right">
                  酒店所在市县:</TD>
                <TD width=328 height=25> <%=rs("city")%></TD>                    
              </tr>
              <tr>
                <TD width=161 height=25 align="right">
                 酒店简介:</TD>
                <TD width=328 height=25><%=rs("info")%></TD>                                  
              </tr>
              <TR>
                <TD colSpan=2 height="35">
                  <p align="center">
                    <input type="button" size="3" value="返回" onclick="javascript:window.history.go(-1)"></p>
  </TD></TR></TBODY></TABLE>
</body>
</html>
<%
rs.close
conn.close
%>